home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 21
/
Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso
/
Aminet
/
comm
/
www
/
IBClock_V1_2.lha
/
clock.ibrx
next >
Wrap
Text File
|
1997-07-21
|
6KB
|
147 lines
/************************************************************************/
/* */
/* $VER: IBClock V1.2 ©1997 by Campino */
/* */
/************************************************************************/
/* */
/* Startet die Uhr von der Workbench und holt sie in den IBrowse Screen */
/* */
/* Start the clock from the workbench and displays it in the IBrowse S. */
/* */
/* Copyright ©1997 by Campino (campino@innocent.com) ! */
/* */
/************************************************************************/
/************************************************************************/
/* */
/* Installation: */
/* */
/* 1) Erzeuge ein Rexx Verzeichnis im IBrowse Verzeichnis. */
/* 2) Kopiere das clock.ibrx in das Rexx Verzeichnis. */
/* 3) Starte IBrowse, gehe zum Menuepunkt Einstellungen/Allgemeines */
/* 4) Klicke auf Rexx und dann auf Neu */
/* 5) Gib bei Name z.b. IBClock ein und wähle das clock.ibrx File im */
/* Makro Eingabefeld ! */
/* 6) Klicke auf OK und speichere dann die Einstellungen ab ! */
/* 7) Fertig ! Gehe nun zum Menuepunkt Rexx und waehle Clock an, nun */
/* muesste die Uhr im IBrowse Screen zu sehen sein :) */
/* */
/* Installation: */
/* */
/* 1) Create a directory called Rexx in the IBrowse directory. */
/* 2) Copy the clock.ibrx file in the Rexx directory of IBrowse. */
/* 3) Start IBrowse, go to the Menue Settings/General */
/* 4) Go to Rexx and then click on the New gadget */
/* 5) In the Name field you can enter e.g. IBClock. Choose the */
/* clock.ibrx file in the Macro field ! */
/* 6) Click on the OK gadget and save your settings ! */
/* 7) Ready ! Go to the Menue Rexx and choose Clock. Now the clock must */
/* appear on the IBrowse Screen :) */
/* */
/************************************************************************/
/************************************************************************/
/* */
/* History */
/* */
/* V1.0 (29.06.1997) - Mainrelease ! Released on Aminet. */
/* V1.1 (02.07.1997) - Added Prefs for "top","left" and name of "clock" */
/* Changed my EMail-Address. Never released. */
/* V1.2ß1 (12.07.97) - Added "RexxReqTools.library" for the BETA */
/* requester. Added Beta-Tags. Changed ClockPath- */
/* variables. */
/* V1.2ß2 (18.07.97) - Added "RexxSupport.library". Changed the command */
/* line for Clock. */
/* V1.2ß3 (19.07.97) - IBClock is now very easy to configure ! */
/* Deleted the ClockPath-Shit and added a simple */
/* Clock variable. You can enter in this Clock-V. */
/* your complete ClockPath+Name ! Changed the c.l. */
/* V1.2 (21.07.1997) - IBClock works now 100% ! Released on Aminet. */
/* */
/* FOR BUG-REPORTS OR ANYTHING OTHER FEEL FREE TO CONTACT ME VIA EMAIL! */
/* EMAIL: CAMPINO@INNOCENT.COM */
/* */
/************************************************************************/
/************************************************************************/
/* */
/* THANX go to the following people: */
/* */
/* Mirko Patzenbein - For BETA testing and nice EMail's */
/* Jorgen Sjobom - For BETA testing */
/* Felix Schwarz - For BETA testing and a few tips. */
/* */
/************************************************************************/
/************************************************************************/
/* */
/* Moechtest Du gerne ueber Neuigkeiten von IBClock informiert werden ? */
/* Moechtest Du gerne neue Versionen (auch BETA-Versionen) von IBClock */
/* direkt via EMail bekommen ? JA ? Dann sende eine EMail an */
/* campino@innocent.com und schreib im Betreff "subscribe IBClock" */
/* (ohne >"< !). Du bekommst dann eine kleine EMail, dass Du in die */
/* "Mailingliste" aufgenommen bist. DIESE IST KEINE NORMALE */
/* MAILINGLISTE ! DU BEKOMMST NUR NEWS UND NEUE VERSIONEN VON IBCLOCK. */
/* DU KANNST NICHT IN DIE MAILINGLISTE SCHREIBEN ! */
/* Moechtest Du von der "Mailingliste" geloescht */
/* werden, so schreib eine EMail an campino@innocent.com und gebe im */
/* Betreff einfach "unsubscribe IBClock" (ohne >"< !) an ! */
/* */
/* Would you like added to my "Mailinglist" ? In the "Mailinglist" you */
/* would be informed about news from IBClock and you will get new */
/* versions (also BETA-versions) directly via EMail from me ! */
/* YES ? Send a EMail to campino@innocent.com with the subject */
/* "subscribe IBClock" (without >"< !). You will receive a short EMail */
/* that you are subscribed. THIS ISN'T A NORMAL MAILINGLIST ! YOU WILL */
/* RECEIVE ONLY NEWS AND NEW VERSIONS FROM IBCLOCK YOU CAN'T WRITE TO */
/* THE "MAILINGLIST" ! To unsubscribe: Write a EMail to */
/* campino@innocent.com and type in the subject "unsubscribe IBClock" */
/* (without >"< !). */
/* */
/************************************************************************/
/**********************************************
* Einstellungen ! - Ändere was Du willst ! *
**********************************************
* Settings ! - Change what you want ! *
**********************************************/
IBrowseScreen='IBrowse' /* IBrowse Public Screen Name */
/* IBrowse Public Screen Name */
Clock='sys:utilities/clock' /* Wo befindet sich die Clock ? */
/* Where is the clock ? */
top=0 /* Hoehen-Position der Uhr */
/* Height-Position of Clock */
left=9999 /* Link-Position der Uhr */
/* Left-Position of Clock */
/************************************
* Und nun - Ändere NICHTS mehr ! *
************************************
* And now - Change NOTHING more ! *
************************************/
options results
if ~exists("Libs:rexxsupport.library") then do
echo "LIBS:RexxSupport.Library not found."
exit
end
ok=addlib("rexxsupport.library",0,-30,0)
address 'IBROWSE'
address command ""||Clock||" pubscreen "||IBrowseScreen||" digital format 2 top "||top" left "||left||""
exit
/************************************************************************/
/* */
/* END */
/* */
/************************************************************************/